home *** CD-ROM | disk | FTP | other *** search
/ 220 Jogos / 220 jogos.iso / tetris / tetron / SOURCE / gamestats.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-08-11  |  595 b   |  16 lines

  1. //----------------------------------------------------------------------------------------
  2. //    Structure for storing game statatistics
  3. //----------------------------------------------------------------------------------------
  4.  
  5. struct GameStats
  6. {
  7.     unsigned int Score;        // The player's score
  8.     unsigned int Lines;        // Total Line Count
  9.     unsigned int Level;        // The current level
  10.  
  11.     //Keeps track of the number of times each tetramino type was in play
  12.     unsigned int TetTypeCount[TET_MAX_TYPES];
  13.     unsigned int TetTotal;    // Total tetraminoes used in play for calc averages
  14.  
  15. };// GameStats
  16.